home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Visual Database
/
Visual BASIC 5.0 (Ent. Edition)
/
Vb5ent Extractor.EXE
/
VB
/
SAMPLES
/
ENTRPRIS
/
HELLO
/
HELO_SVR.CLS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Visual Basic class definition
|
1996-11-23
|
392 b
|
18 lines
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "HelloClass"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Public Function SayHello() As String
SayHello = "Hello Microsoft Visual Basic Users!"
End Function
Private Sub Class_Terminate()
Unload frmHello
End Sub